recursive function

递归函数:在编程中使用递归并能够调用自身直到满足某个条件的任何函数。

常用释义

词性释义

递归函数:在编程中使用递归并能够调用自身直到满足某个条件的任何函数。
例句
  • 全部
1·"Next, you'll create a recursive function."
接下来,创建递归函数。
2·How can I serialise a recursive function?
我怎么能连续的递归函数?
3·How to write a recursive function for this?
如何编写一个递归函数吗?
4·You've implemented a recursive function in Lisp.
您已经在Lisp中实现了递归函数。
5·Converting a common loop to a recursive function.
将一个常见的循环转化为递归函数。
6·So recursive function will not get the right results.
使递归函数不能得到正确的结果。
7·Otherwise, a recursive function is used to calculate the factorial.
否则,使用递归函数计算阶乘。
8·Our next example of a recursive function on lists will be a little more complicated.
我们的下一个基于列表的递归函数示例要稍微复杂一些。
9·Probably the best way to understand is with a real example and to do that, we need a recursive function.
可能理解它的最佳途径是接触一个实际的例子,我们需要一个递归函数。
10·Main is a recursive function — it accepts a node set in the current argument and loops over the node set.
main是一个递归函数,它用current参数接受一个节点集并遍历该节点集。